03. Typescript 타입
타입스크립트의 자료형에 대해 알아보자.
ECMAScript 표준에 따른 Primitive Type(기본 자료형)
Wrapper 타입과/Primitive Type이 있는데, Primitive Type쓰는 것을 권장함.
- Boolean/boolean
- Number/number
- String/string
- null : 값으로 할당된 것을 null 이라고 함, 모든 자료형에 할당될 수 있음.
- undefined : 값을 할당하지 않은 변수
- Symbol
1 | let sym = Symbol(); |
- Array : Array<타입>, 타입[]
1 | const array:number[] = [1, 2, 3, 4, 5]; |
추가 타입
- Any : 최대한 쓰지 않는 것이 TypeScript를 잘쓰는 길이라는 의견이 있음.
- Void(함수 리턴)
- Never(함수 리턴)
- Enum
1 | enum Color { Red, Green=2, Blue} |
- Tuple : Array의 변칙 형태로, 배열인데 타입이 한가지가 아닌 경우.
1 | const tu : [number, string] = [0, "일"]; |
Template String
행에 걸쳐있거나, 표현식을 넣을 수 있는 문자열.
Union Type
string | null | defined 식으로 사용.
Type Assertions
실제로 해당 타입으로 바꾸는 것이 아니라, 컴파일러에게 타입 체크를 할 시에만 타입스크립트 컴파일러에게 알려주는 것.
1 | let strLength: number = (<string>someValue).length; |
Type Allias
타입 이름의 별칭을 지정
1 | type MyType = string | number; |